home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-418.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  102 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(14240);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CAN-2004-0415", "CAN-2004-0535", "CAN-2004-0587");
  13.  
  14.  name["english"] = "RHSA-2004-418: kernel";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated kernel packages that fix potential information leaks and a
  21.   incorrect driver permission for Red Hat Enterprise Linux 2.1 are now
  22.   available.
  23.  
  24.   The Linux kernel handles the basic functions of the operating system.
  25.  
  26.   Paul Starzetz discovered flaws in the Linux kernel when handling file
  27.   offset pointers. These consist of invalid conversions of 64 to 32-bit file
  28.   offset pointers and possible race conditions. A local unprivileged user
  29.   could make use of these flaws to access large portions of kernel memory.
  30.   The Common Vulnerabilities and Exposures project (cve.mitre.org) has
  31.   assigned the name CAN-2004-0415 to this issue.
  32.  
  33.   These packages contain a patch written by Al Viro to correct these flaws.
  34.   Red Hat would like to thank iSEC Security Research for disclosing this
  35.   issue and a number of vendor-sec participants for reviewing and working on
  36.   the patch to this issue.
  37.  
  38.   In addition, these packages correct two minor issues:
  39.  
  40.   An bug in the e1000 network driver. This bug could be used by local users
  41.   to leak small amounts of kernel memory (CAN-2004-0535).
  42.  
  43.   Inappropriate permissions on /proc/scsi/qla2300/HbaApiNode (CAN-2004-0587).
  44.  
  45.   All Red Hat Enterprise Linux 2.1 users are advised to upgrade their kernels
  46.   to these erratum packages which contain backported patches to correct these
  47.   issues.
  48.  
  49.  
  50.  
  51.  
  52. Solution : http://rhn.redhat.com/errata/RHSA-2004-418.html
  53. Risk factor : High';
  54.  
  55.  script_description(english:desc["english"]);
  56.  
  57.  summary["english"] = "Check for the version of the kernel packages";
  58.  script_summary(english:summary["english"]);
  59.  
  60.  script_category(ACT_GATHER_INFO);
  61.  
  62.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  63.  family["english"] = "Red Hat Local Security Checks";
  64.  script_family(english:family["english"]);
  65.  
  66.  script_dependencies("ssh_get_info.nasl");
  67.  
  68.  script_require_keys("Host/RedHat/rpm-list");
  69.  exit(0);
  70. }
  71.  
  72. include("rpm.inc");
  73. if ( rpm_check( reference:"kernel-BOOT-2.4.9-e.48", release:"RHEL2.1") )
  74. {
  75.  security_hole(0);
  76.  exit(0);
  77. }
  78. if ( rpm_check( reference:"kernel-doc-2.4.9-e.48", release:"RHEL2.1") )
  79. {
  80.  security_hole(0);
  81.  exit(0);
  82. }
  83. if ( rpm_check( reference:"kernel-headers-2.4.9-e.48", release:"RHEL2.1") )
  84. {
  85.  security_hole(0);
  86.  exit(0);
  87. }
  88. if ( rpm_check( reference:"kernel-source-2.4.9-e.48", release:"RHEL2.1") )
  89. {
  90.  security_hole(0);
  91.  exit(0);
  92. }
  93.  
  94. if ( rpm_exists(rpm:"kernel-", release:"RHEL2.1") )
  95. {
  96.  set_kb_item(name:"CAN-2004-0415", value:TRUE);
  97.  set_kb_item(name:"CAN-2004-0535", value:TRUE);
  98.  set_kb_item(name:"CAN-2004-0587", value:TRUE);
  99. }
  100.  
  101. set_kb_item(name:"RHSA-2004-418", value:TRUE);
  102.